Defines the == operator for vector.
            
            
            
            
            
            
            
            '宣言
 
Public Operator =( _
   ByVal  As Matrix(Of T), _
   ByVal  As Matrix(Of T) _
) As System.Boolean
             
        
            
            public System.bool operator ==( 
   Matrix<T> ,
   Matrix<T> 
)
             
        
             
        
            パラメータ
- left
 
- A Matrix indicates the left operand.
 - right
 
- A Matrix indicates the right operand.
 
            
            戻り値の型
A bool indicates whether left equals right.